home *** CD-ROM | disk | FTP | other *** search
- on startMovie
- global gCursorReady, gMagCursor, gKnobSprite
- gCursorReady = 1
- gMagCursor = "magCursor"
- qtChan = 11
- sprite(qtChan).volume = 256
- preLoad(qtChan - 1)
- puppetSprite(48, 1)
- set the locH of sprite 48 to the mouseH
- set the locV of sprite 48 to the mouseV
- sprite(13).visible = 0
- sprite(15).visible = 0
- sprite(17).visible = 0
- set the mouseDownScript to EMPTY
- set the mouseUpScript to EMPTY
- gKnobSprite = 26
- setUpKnob()
- end
-
- on idle
- global gCursorReady
- if gCursorReady = 1 then
- cursor(200)
- checkCursors()
- set the locH of sprite 48 to the mouseH
- set the locV of sprite 48 to the mouseV
- updateStage()
- end if
- end
-
- on checkCursors
- global gMagCursor
- set the castNum of sprite 48 to the number of member "curs1"
- if the castNum of sprite 2 and rollOver(2) then
- set the castNum of sprite 48 to the number of member "deMagCursor"
- end if
- if rollOver(6) then
- set the castNum of sprite 48 to the number of member "hotCursor"
- end if
- if rollOver(7) then
- set the castNum of sprite 48 to the number of member "hotCursor"
- end if
- if rollOver(8) then
- set the castNum of sprite 48 to the number of member "hotCursor"
- end if
- if rollOver(9) then
- set the castNum of sprite 48 to the number of member "hotCursor"
- end if
- if the castNum of sprite 10 and rollOver(10) then
- set the castNum of sprite 48 to the number of member gMagCursor
- end if
- if rollOver(11) then
- set the castNum of sprite 48 to the number of member "curs1"
- end if
- if rollOver(18) then
- set the castNum of sprite 48 to the number of member "hotCursor"
- end if
- if rollOver(25) then
- set the castNum of sprite 48 to the number of member "hotCursor"
- end if
- repeat with i = 33 to 35
- if rollOver(i) then
- set the castNum of sprite 48 to the number of member "hotCursor"
- end if
- end repeat
- if rollOver(38) then
- set the castNum of sprite 48 to the number of member "hotCursor"
- end if
- repeat with i = 40 to 43
- if rollOver(i) then
- set the castNum of sprite 48 to the number of member "hotCursor"
- end if
- end repeat
- end
-